|
This page last changed on Oct 07, 2009 by kgomes.
For the Qpid exploration, I setup a Red Hat Enterprise Linux machine. I did all the following as root:
- Downloaded the Qpid tar.gz from http://qpid.apache.org/download.html (http://www.apache.org/dist/qpid/0.5/qpid-0.5.tar.gz)
- Unzipped the file.
- Untarred the file.
- I decided to run the C++ broker and so I needed to build it.
- Before I could do that though, I had to have all the right packages to build, so I ran:
of which the help2man and graphviz were not available.
- To get help2man, I downloaded the tar.gz from here: http://ftp.gnu.org/gnu/help2man/help2man-1.36.4.tar.gz
- Unzipped the file
- Untarred it
- I then cd'd into that directory and ran
which then died with:
- So, I installed the gettext-1.05.tar.gz perl module by downloading it, unzipping, unpacking, cd'ing into gettext-1.05 and running:
- Went back to the help2man directory and tried it again (it succeeded this time)
- Now run make
which seemed to work OK.
- Now for graphviz, I went to http://www.graphviz.org and downloaded the .rmp file and let RHEL open it with the package installer automatically.
- I clicked on 'Apply' and installed it OK.
- Because I wanted to explore using the clustering, I installed openais using yum by executing
- In order to get the XML exchange working, I need to install xerces by going to http://xerces.apache.org/xerces-c/ and downloading the latest version for 64 bit linux (tar.gz).
- I unzipped it, untarred it
- I then wanted to install xqilla and went to http://sourceforge.net/projects/xqilla/files/ to get the source.
|